runtime.gobuf.sp (field)

42 uses

	runtime (current package)
		cgocall.go#L320: 	sp := gp.m.g0.sched.sp // system sp saved by cgocallback.
		cgocall.go#L495: 		sched.sp = *(*uintptr)(unsafe.Pointer(sched.sp + alignUp(sys.MinFrameSize, sys.StackAlign)))
		heapdump.go#L348: 		sp = gp.sched.sp
		mbitmap.go#L1949: 		for u.initAt(gp.m.curg.sched.pc, gp.m.curg.sched.sp, 0, gp.m.curg, 0); u.valid(); u.next() {
		mgcmark.go#L934: 		sp = gp.sched.sp
		panic.go#L1394: 	gp.sched.sp = sp
		proc.go#L598: 		print("runtime: morestack on g0, stack [", hex(g.stack.lo), " ", hex(g.stack.hi), "], sp=", hex(g.sched.sp), ", called from\n")
		proc.go#L600: 		traceback1(g.sched.pc, g.sched.sp, g.sched.lr, g, 0)
		proc.go#L1919: 	gp.sched.sp = sys.GetCallerSP()
		proc.go#L2514: 	gp.sched.sp = gp.stack.hi
		proc.go#L2515: 	gp.sched.sp -= 4 * goarch.PtrSize // extra space in case of reads slightly beyond frame
		proc.go#L2519: 	gp.syscallsp = gp.sched.sp
		proc.go#L2520: 	gp.stktopsp = gp.sched.sp
		proc.go#L4592: 	gp.sched.sp = sp
		proc.go#L4807: 	gp.syscallsp = gp.sched.sp
		proc.go#L4812: 		sp2 := gp.sched.sp
		proc.go#L4841: 			print("entersyscallblock inconsistent sp ", hex(sp), " ", hex(gp.sched.sp), " ", hex(gp.syscallsp), " [", hex(gp.stack.lo), ",", hex(gp.stack.hi), "]\n")
		proc.go#L5348: 	newg.sched.sp = sp
		runtime2.go#L316: 	sp   uintptr
		secret.go#L44: 		sp := mp.curg.sched.sp
		stack.go#L795: 		if oldfp == gp.sched.sp-goarch.PtrSize {
		stack.go#L908: 	used := old.hi - gp.sched.sp
		stack.go#L971: 	gp.sched.sp = new.hi - used
		stack.go#L1035: 		traceback(morebuf.pc, morebuf.sp, morebuf.lr, morebuf.g.ptr())
		stack.go#L1052: 		gp.syscallsp = morebuf.sp
		stack.go#L1061: 			" sp=", hex(gp.sched.sp), " stack=[", hex(gp.stack.lo), ", ", hex(gp.stack.hi), "]\n",
		stack.go#L1062: 			"\tmorebuf={pc:", hex(morebuf.pc), " sp:", hex(morebuf.sp), " lr:", hex(morebuf.lr), "}\n",
		stack.go#L1063: 			"\tsched={pc:", hex(gp.sched.pc), " sp:", hex(gp.sched.sp), " lr:", hex(gp.sched.lr), " ctxt:", gp.sched.ctxt, "}\n")
		stack.go#L1066: 		traceback(morebuf.pc, morebuf.sp, morebuf.lr, gp)
		stack.go#L1073: 	thisg.m.morebuf.sp = 0
		stack.go#L1106: 	sp := gp.sched.sp
		stack.go#L1113: 			"\tmorebuf={pc:", hex(morebuf.pc), " sp:", hex(morebuf.sp), " lr:", hex(morebuf.lr), "}\n",
		stack.go#L1114: 			"\tsched={pc:", hex(gp.sched.pc), " sp:", hex(gp.sched.sp), " lr:", hex(gp.sched.lr), " ctxt:", gp.sched.ctxt, "}\n")
		stack.go#L1158: 		used := gp.stack.hi - gp.sched.sp
		stack.go#L1297: 	if used := gp.stack.hi - gp.sched.sp + stackNosplit; used >= avail/4 {
		sys_x86.go#L17: 	sp := buf.sp
		sys_x86.go#L20: 	buf.sp = sp
		traceback.go#L161: 			sp0 = gp.sched.sp
		traceback.go#L304: 				frame.sp = gp.sched.sp
		traceback.go#L322: 				frame.sp = gp.sched.sp
		tracestack.go#L120: 						pcBuf[2] = *(*uintptr)(unsafe.Pointer(gp.sched.sp))